home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 43.zip / ACC Copy Disk v2.0.adf / devs / MountList < prev    next >
Text File  |  1987-03-01  |  616b  |  27 lines

  1. /* An example MOUNTLIST file enabling a 5" disk to be mounted
  2.    as DF2:, an interactive serial port mounted as AUX: and a
  3.    pipe handler mounted as PIPE:
  4. */
  5.  
  6. DF2:       Device = trackdisk.device
  7.            Unit   = 2
  8.            Flags  = 1
  9.            Surfaces  = 2
  10.            BlocksPerTrack = 11
  11.            Reserved = 2
  12.            Interleave = 0
  13.            LowCyl = 0  ;  HighCyl = 39
  14.            Buffers = 5
  15.            BufMemType = 3
  16. #
  17.  
  18. AUX:       Handler = L:Aux-Handler
  19.            Stacksize = 700
  20.            Priority = 5
  21. #
  22.  
  23. PIPE:      Handler = L:Pipe-Handler
  24.            Stacksize = 700
  25.            Priority = 5
  26. #
  27.